home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / vol15n11.zip / TBWIZ.ZIP / SAVEPRMP.FRM < prev    next >
Text File  |  1996-02-21  |  2KB  |  60 lines

  1. VERSION 4.00
  2. Begin VB.Form SavePrmpt 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Toolbar Saver"
  5.    ClientHeight    =   1425
  6.    ClientLeft      =   6660
  7.    ClientTop       =   5820
  8.    ClientWidth     =   4545
  9.    ControlBox      =   0   'False
  10.    Height          =   1830
  11.    Left            =   6600
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   1425
  16.    ScaleWidth      =   4545
  17.    ShowInTaskbar   =   0   'False
  18.    Top             =   5475
  19.    Width           =   4665
  20.    Begin VB.CommandButton Command1 
  21.       Caption         =   "OK"
  22.       Default         =   -1  'True
  23.       Height          =   375
  24.       Left            =   1800
  25.       TabIndex        =   0
  26.       Top             =   960
  27.       Width           =   975
  28.    End
  29.    Begin VB.Image Image1 
  30.       Height          =   600
  31.       Left            =   120
  32.       Picture         =   "SavePrmp.frx":0000
  33.       Top             =   240
  34.       Width           =   645
  35.    End
  36.    Begin VB.Label Label1 
  37.       Caption         =   "Save this form before you load or save a toolbar."
  38.       Height          =   495
  39.       Left            =   840
  40.       TabIndex        =   1
  41.       Top             =   360
  42.       Width           =   3615
  43.       WordWrap        =   -1  'True
  44.    End
  45. End
  46. Attribute VB_Name = "SavePrmpt"
  47. Attribute VB_Creatable = False
  48. Attribute VB_Exposed = False
  49. Private Sub Command1_Click()
  50. Unload Me
  51. End Sub
  52.  
  53. Private Sub Form_Load()
  54. WinCenter Me
  55. Show
  56. Me.SetFocus
  57. End Sub
  58.  
  59.  
  60.